home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Designer's Club 1996 December
/
Designer's Club 1996 December.iso
/
pc
/
ideasrc
/
seasons.dir
/
00012_Script_12
< prev
next >
Wrap
Text File
|
1996-11-06
|
1KB
|
51 lines
on startmovie
global slider, toolH, toolV, gallery
set slider = 0
set the locH of sprite 40 to toolH
set the locV of sprite 40 to toolV
end
on stopmovie
global toolH, toolV
set toolH = the locH of sprite 40
set toolV = the locV of sprite 40
end
on pressit button, swap
puppetsound "clickdn"
repeat while the mousedown
set the visible of sprite button to false
updatestage
end repeat
set the visible of sprite button to true
puppetsound "clickup"
end
on tools
global slider
go the frame
repeat with n = 41 to 46
puppetsprite n, true
end repeat
repeat with n = 41 to 46
set the locV of sprite n to the locV of sprite 40 + 42
end repeat
set the locH of sprite 41 to the locH of sprite 40
set the locH of sprite 42 to the locH of sprite 40 - 116
set the locH of sprite 43 to the locH of sprite 40 - 69
set the locH of sprite 44 to the locH of sprite 40 - 22
set the locH of sprite 45 to the locH of sprite 40 + 34
set the locH of sprite 46 to the locH of sprite 40 + 104
updatestage
end tools
on keyDown
if the key = 1 then set the soundLevel to (1)
if the key = 2 then set the soundLevel to (2)
if the key = 3 then set the soundLevel to (3)
if the key = 4 then set the soundLevel to (4)
if the key = 5 then set the soundLevel to (5)
if the key = 6 then set the soundLevel to (6)
if the key = 7 then set the soundLevel to (7)
end keydown